home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 2 (Reseller) / Apple R&P Lib Reseller v2.0.iso / 4-Fonts & Software / Demo Software / AppMaker / Demo AppMaker™ / Demo AppMaker™.rsrc / TmpP_205_DoMenu.txt < prev    next >
Encoding:
Text File  |  1989-04-09  |  764 b   |  61 lines

  1. # (decoded with TMPL 11972)
  2. { %filename% }
  3. { Created %date% %time% by AppMaker }
  4.  
  5. Unit %UnitName%;
  6. Interface
  7.  
  8. Uses
  9. %If MPW%
  10.     {$Load ToolBox.dump}
  11.         MemTypes,
  12.         QuickDraw,
  13.         OSIntf,
  14.         ToolIntf,
  15.         PackIntf,
  16.     {$Load}
  17.  
  18. %end if%
  19. %If Think%
  20. {$ifc undefined Think_Pascal}
  21.     ListManager,
  22. {$endc}
  23. %end if%
  24.     %UsesDialogs%
  25.     Globals,
  26.     ResourceDefs,
  27.     DoScrap;
  28.  
  29. {----------}
  30. Procedure Init%MenuName%;
  31. Procedure Do%MenuName% (itemNr:    integer);
  32.  
  33. {----------}
  34. Implementation
  35.  
  36. %If MPW%
  37. {$D+}
  38. {$R+}
  39. {$OV+}
  40.  
  41. %end if%
  42. %If MPW%
  43. {$S %unitname%}
  44.  
  45. %end if%
  46. {----------}
  47. Procedure Init%MenuName%;
  48. Begin
  49. End; {Init%MenuName%}
  50.  
  51. %DoMenuItems%
  52. {----------}
  53. Procedure Do%MenuName% {(itemNr:    integer)};
  54. Begin
  55.     case itemNr of
  56.         %HandleMenuItems%
  57.     end; {case}
  58. End; {Do%MenuName%}
  59.  
  60. End. {%UnitName%}
  61.